home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio_test_tprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  235 b   |  17 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4.  
  5. {
  6.   int i;
  7.  
  8.   for (i = 0; i < 1000; i++) {
  9.     printf("                      Heading Line               \n\
  10. %70s\n\
  11. %70d\n\
  12. %70ld\n",
  13. "String to be printed as a test", 0x7fff, 0x7ffffffL);
  14.   }
  15.   return 0;
  16. }
  17.